home *** CD-ROM | disk | FTP | other *** search
/ Dr. Windows 3 / dr win3.zip / dr win3 / VISUALBA / VCC.ZIP / WHATSNEW.TXT < prev   
Text File  |  1994-02-01  |  5KB  |  176 lines

  1. New features of VSVBX VideoSoft Custom Controls Version 3.0
  2. ===========================================================
  3. (For specific release information check VERSION.TXT)
  4.  
  5. Overall
  6. =======
  7.     Optimized speed for loading/unloading your VSVBX in your apps
  8.     Creates smaller EXE and FRM files       
  9.     Around 20 new features.
  10.     15% smaller
  11.     50 page manual
  12.  
  13. IndexTab
  14. =======
  15.   New Properties
  16.     BackSheets
  17.         Defines the appearance of the back sheets behind the
  18.         current tab.
  19.         Options:
  20.                 0 - None
  21.                 1 - Shadow
  22.                 2 - Sheets
  23.     TabCaption
  24.         Sets or retrieve the caption for an individual tab.
  25.  
  26.         VSIndexTab1.Caption = "First|Second|Third"
  27.         debug.print VSIndexTab1.TabCaption(1)
  28.            Second
  29.         VSIndexTab1.TabCaption(1) = "New Second"
  30.         debug.print VSIndexTab1.TabCaption(1)
  31.            New Second
  32.         
  33.         
  34.     TabsPerPage
  35.         Determines the number of tabs that should be
  36.         displayed in the control.
  37.  
  38.         If this property is set to 0, the size of each tab
  39.         is determined by the length of its caption.  If is
  40.         greater than zero, all tabs are DRAWN THE SAME SIZE
  41.  
  42.     TabOutLineColor
  43.         Defines the color to be used for the outline the 
  44.         tabs.
  45.  
  46.         Great to customize the 3D appearance.
  47.  
  48.   New Settings
  49.     Two new tab styles: 
  50.         Chamfered corners 
  51.         3D Chamfered corners 
  52.  
  53.   Other improvementes:
  54.     Better appearance with enhanced 3D look         
  55.     Smoother tab scrolling
  56.     Faster flicker-free redraws  
  57.     Keeps visually the tab order
  58.     Automatic True Type font converting/matching for side tabs.
  59.  
  60. Elastic
  61.  
  62.   Replace all the labels in your form with one elastic.
  63.  
  64.   New Properties
  65.     AccessKey
  66.         Determines whether the Elastic should show and 
  67.         process access keys.  Access keys are created
  68.         by preceding characters in the Caption with an 
  69.         ampersand (&).
  70.  
  71.     BevelChildren
  72.         Determines whether the Elastic should draw 3-D 
  73.         frames around all its child controls or only
  74.         around specified types of controls.
  75.  
  76.     MaxChildSize
  77.         Sets or returns the maximum size for the Elastic's
  78.         child controls.  The size is measured in Twips
  79.         and may correspond to the width or height of the 
  80.         child control, depending on the setting of the
  81.         AutoSizeChildren property.
  82.  
  83.         The maximum size limit only applies to the child 
  84.         controls being resized by the Elastic.  If
  85.         AutoSizeChildren is set to uneven Spacing, for
  86.         example, only the top child is affected. This 
  87.         property is useful to prevent controls inside 
  88.         an Elastic from spreading too much.
  89.  
  90.         Command buttons, for example, are harder to use if
  91.         they are too far apart from each other.
  92.  
  93.         Set this property to 0 disables it.
  94.  
  95.     MinChildSize
  96.         Sets or returns the minimum size for the Elastic's
  97.         child controls.  The size is measured in Twips
  98.         and may correspond to the width or height of the 
  99.         child control, depending on the setting of the
  100.         AutoSizeChildren property.
  101.  
  102.         The minimum size limit only applies to the child
  103.         controls being resized by the Elastic.  If
  104.         AutoSizeChildren is set to uneven Spacing, for
  105.         example, only the top child is affected.
  106.  
  107.         This property is useful to prevent controls inside
  108.         an Elastic from getting too narrow.  It may be 
  109.         better, for example, to show only a few command
  110.         buttons with readable captions than to show all of
  111.         them truncating the captions.
  112.  
  113.         This property can be used in conjunction with the
  114.         Splitter property to prevent users from making a 
  115.         child control too small.
  116.  
  117.         Setting this property to 0 disables it.
  118.  
  119.  
  120.     WordWrap
  121.         Determines whether the caption text should be 
  122.         automatically broken between words if a word would
  123.         extend past the edge of the control.  
  124.         Return characters will also break the caption.
  125.  
  126.  
  127.   New Settings
  128.  
  129.     New AutosizeChildren Options:
  130.         5 Elastics Horizontally
  131.         6 Elastics Vertically
  132.         7 Proportionally
  133.  
  134.         The Elastics Horizontally and Elastics Vertically
  135.         options stretch only other Elastics inside the
  136.         Elastic and spread all child controls.  They can be 
  137.         used to center controls and to form clusters of
  138.         controls inside an Elastic.
  139.  
  140.  
  141. Awk
  142.  
  143.   New Properties
  144.     Match Quotes
  145.         Determines whether the VSAwk parser should regard
  146.         quote-delimited strings as single fields.
  147.  
  148.         This features was added to facilitate parsing of 
  149.         quote and comma-delimited files such as those
  150.         exported by most database and spreadsheet programs.
  151.  
  152.         Double or single quotes are both recognized, but one
  153.         does not match the other. Unmatched quotes in a 
  154.         line are ignored.
  155.  
  156.     PostAt
  157.         Returns the position of the specified field in 
  158.         the current record.
  159.  
  160.         This property was designed to be used with VB's 
  161.         string functions.  The first string position is 1.
  162.  
  163.         This property is useful when you want to process a 
  164.         field based on its contents rather than on its 
  165.         position.  See also the FieldAt property, which 
  166.         performs the reverse function.
  167.  
  168.       FileMode
  169.         Allows scan thru ASCII or binary files.
  170.  
  171.   New Settings
  172.     FS(Field Separator) improved features.
  173.     Buffer increased from 255 bytes to 64 K.
  174.  
  175.  
  176.